#phone-page{
	background: url(newbg.png) repeat-x;
	padding: 20px;
}
.pc-page-hide{
	display: block;
}
.phone-page-hide{
	display: none;
}
#phone-page a {
	text-decoration: none;
	color: #000;
}

/* 状态一: 未被访问过的链接 */
#phone-page a:link {
	text-decoration: none;
	color: #000;
}

/* 状态二: 已经访问过的链接 */
#phone-page a:visited {
	text-decoration: none;
	color: #000;
}

/* 状态三: 鼠标划过(停留)的链接(默认红色) */
#phone-page a:hover {
	text-decoration: none;
	color: #2890E6;
}

/* 状态四: 被点击的链接 */
#phone-page a:active {
	text-decoration: none;
	color: #000;
}

._phone-page_fade a {
	text-decoration: none;
	color: #000;
}

._phone-page_cloudMuneBtn {
	position: fixed;
	right: 0;
	top: 10px;
	background-color: #FFF;
	border-radius: 33px 0 0 33px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 33px;
	width: 50px;
	z-index: 89;
	box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}

._phone-page_fade {
	z-index: 90;
	display: none;
	-webkit-animation-name: fade;
	-webkit-animation-duration: 0.5s;
	animation-name: fade;
	animation-duration: 0.5s;
	position: fixed;
	right: 0;
	top: 20px;
	transition: all 1s;
	flex-direction: column;
	justify-content: center;
	padding: 10px 0;
	background: linear-gradient(#cfe7ff, #f1faff);
	border-radius: 8px 0 0 8px;
}

._phone-page_fade>div {
	margin: 10px 30px 10px 18px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
}

@-webkit-keyframes _phone-page_fade {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}

@keyframes _phone-page_fade {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}

._phone-page_innerBox {
	width: 100%;
	padding: 0px 0 0 0;
	margin: 10px 0;
}

._phone-page_weixin {
	background-color: #68b4ff;
	position: fixed;
	top: 50px;
	margin: auto;
	display: none;
	z-index: 999;
	border-radius: 6px;
	left: 50%;
	top: 20%;
	transform: translate(-50%, -50%);
	padding-top: 0px;
}
 ._phone-page_searchInput_left {
     width: 100%;
     /* border: 1px solid #2890E6; */
     height: 100%;
     border-radius: 18px 0 0 18px;
     padding-left: 22px;
     background-color: white;
     display: flex;
     align-items: center;
     box-sizing: border-box;

 }
._phone-page_searchInput_left input{
	    border-style: none;
	    width: 100%;
	    padding: 0;
	    height: 100%;
}
 ._phone-page_searchInput_right {
     box-sizing: border-box;
     height: 100%;
     border: 1px solid #2890E6;
     width: 50px;
     background-color: #2890E6;
     border-radius: 0 18px 18px 0;
 }

._phone-page_innerBox_buttom {
	width: 100%;
	padding: 1px 0 5px 0;
}

._phone-page_innerBox_buttom p {
	margin: 6px 0 0 0;
}

._phone-page_innerBox_buttom a {
	text-decoration: none;
	color: white;
}